home *** CD-ROM | disk | FTP | other *** search
/ Online Today 2000 January / Onto0100.iso / pc / Browser / Web-Fix / Web-Fix Installer.exe / Main / Quit.k < prev    next >
Encoding:
Text File  |  1999-09-08  |  2.1 KB  |  90 lines

  1. module oRoot1 is cBox
  2. with 
  3.     Flags is $00000152; 
  4.     release Editor:
  5.         IOWindow is {$0000009C,$000000BE,$0000028F,$000001EF,$00000000,$FFFFFFB1,$00000000,$00000000};
  6.         LayoutWindow is {$00000142,$0000002A,$0000028F,$000001EF,$00000000,$00000000,$00000064,$00000000};
  7.     end;
  8.     Name is "Root"; 
  9.     Enabled is false; 
  10.     
  11.     Width is 800; Height is 600; 
  12.     
  13.     
  14.     Elements is [
  15.         oSound3,
  16.         oBlack2
  17.     ];
  18. end;
  19.  
  20. object oSound3 is cSound
  21. with 
  22.     Flags is $00000044; 
  23.     Name is "Sound"; 
  24.     Enabled is false; Shown is false; 
  25.     
  26.     
  27.     
  28.     URL is "../GUI/Sounds/End.wav"; 
  29.     
  30.     Events is [
  31.         cOnscreenEvent
  32.         with Flags is $00000004; 
  33.             Commands is [
  34.                 cRunCommand
  35.                 with Target is oTargetSelf; Rewind is true; end
  36.             ];
  37.         end,
  38.         cFinishedEvent
  39.         with Flags is $00000004; 
  40.             Commands is [
  41.                 cKR_ScriptCommand
  42.                 with ScriptGroup is "Web-Fix 2 Navi"; Script is oWF_CallWFPlugin; 
  43.                     Commands is [
  44.                         cKR_ScriptParameter
  45.                         with ParameterIsCookie is false; ParameterValue is "Internal"; end,
  46.                         cKR_ScriptParameter
  47.                         with ParameterIsCookie is false; ParameterValue is "RoomManager"; end,
  48.                         cKR_ScriptParameter
  49.                         with ParameterIsCookie is false; ParameterValue is "Quit"; end,
  50.                         cKR_ScriptResult
  51.                         with ResultComment is ""; end
  52.                     ];
  53.                 end
  54.             ];
  55.         end
  56.     ];
  57. end;
  58.  
  59. object oBlack2 is cBox
  60. with 
  61.     Flags is $00000254; 
  62.     Name is "Black"; 
  63.     
  64.     
  65.     AdjustWidth is GetLayoutWidth; AdjustHeight is GetLayoutHeight; 
  66.     
  67.     Kind is DrawOpaque; 
  68.     Events is [
  69.         cMouseDownEvent
  70.         with Flags is $00000004; 
  71.             Commands is [
  72.                 cRunCommand
  73.                 with Target is oSound3; Mode is Clear; end,
  74.                 cKR_ScriptCommand
  75.                 with Flags is $00000001; ScriptGroup is "Web-Fix 2 Navi"; Script is oWF_CallWFPlugin; 
  76.                     Commands is [
  77.                         cKR_ScriptParameter
  78.                         with Flags is $00004000; ParameterIsCookie is false; ParameterValue is "Internal"; end,
  79.                         cKR_ScriptParameter
  80.                         with Flags is $00004000; ParameterIsCookie is false; ParameterValue is "RoomManager"; end,
  81.                         cKR_ScriptParameter
  82.                         with Flags is $00004000; ParameterIsCookie is false; ParameterValue is "Quit"; end,
  83.                         cKR_ScriptResult
  84.                         with Flags is $00004000; ResultComment is ""; end
  85.                     ];
  86.                 end
  87.             ];
  88.         end
  89.     ];
  90. end;